From cedcfeaf293d69cf5c6fa14891842532071f8bdd Mon Sep 17 00:00:00 2001 From: robertlipe Date: Tue, 11 Feb 2014 02:53:10 +0000 Subject: [PATCH] Fix theoretical overrun in tiger reader. --- gpsbabel/tiger.cc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/gpsbabel/tiger.cc b/gpsbabel/tiger.cc index 865ede221..1b2a4c6f1 100644 --- a/gpsbabel/tiger.cc +++ b/gpsbabel/tiger.cc @@ -154,8 +154,8 @@ static void data_read(void) { double lat,lon; - char desc[100]; - char icon[100]; + char desc[101]; + char icon[101]; char* ibuf; Waypoint* wpt_tmp; int line = 0; -- 2.30.2